home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / BSD43_VA.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  49 lines

  1.  
  2. /********************************************
  3. bsd43_vax.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13.  
  14. /* $Log:    bsd43_vax.h,v $
  15.  * Revision 4.1  91/09/25  11:41:07  brennan
  16.  * VERSION 1.0
  17.  * 
  18.  * Revision 3.2  91/08/13  09:04:09  brennan
  19.  * VERSION .9994
  20.  * 
  21.  * Revision 3.1  91/06/07  10:39:33  brennan
  22.  * VERSION 0.995
  23.  * 
  24. */
  25.  
  26. /* BSD UNIX on a vax */
  27.  
  28. #ifndef   CONFIG_H
  29. #define   CONFIG_H    1
  30.  
  31. #define   BSD43_VAX
  32.  
  33. #define   FPE_TRAPS_ON        1
  34. #define   FPE_ZERODIVIDE   FPE_FLTDIV_FAULT
  35. #define   FPE_OVERFLOW     FPE_FLTOVF_FAULT
  36.  
  37. #define   HAVE_VOID_PTR        0
  38.  
  39. #define   HAVE_STRTOD        0
  40. #define   HAVE_FMOD        0
  41. #define   HAVE_MATHERR        0
  42.  
  43. #define   vfprintf(s,f,a)    _doprnt(f,a,s)
  44.  
  45. #include "config/Idefault.h"
  46.  
  47.  
  48. #endif  /* CONFIG_H  */
  49.